home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / t3_1 / xlib.lha / xlib / xws9.cdecl < prev    next >
Text File  |  1990-05-29  |  2KB  |  107 lines

  1. ;;; 9.1.1  Setting Standard Properties
  2.  
  3.     ;;; YSetStandardProperties is in xwss.sc
  4.  
  5. ;;; 9.1.2  Setting and Getting Window Names
  6.  
  7. (extern void "XStoreName"
  8.     (DisplayP dpy)
  9.     (Window w)
  10.     (string name))
  11.  
  12.     ;;; YFetchName is in xwss.sc
  13.  
  14. ;;; 9.1.3  Setting and Getting Icon Names
  15.  
  16. (extern void "XSetIconName"
  17.     (DisplayP dpy)
  18.     (Window w)
  19.     (string icon_name))
  20.  
  21.     ;;; YGetIconName is in xwss.sc
  22.  
  23. ;;; 9.1.4  Setting the Command
  24.  
  25.     ;;; YSetCommand is in xwss.sc
  26.  
  27. ;;; 9.1.5  Getting and Setting Window Manager Hints
  28.  
  29. (extern void "XSetWMHints"
  30.     (DisplayP dpy)
  31.     (Window w)
  32.     (XWMHintsP hints))
  33.  
  34.     ;;; YGetWMHints is in xwss.sc
  35.  
  36. ;;; 9.1.6  Setting and Getting Window Sizing Hints
  37.  
  38. (extern void "XSetNormalHints"
  39.     (DisplayP dpy)
  40.     (Window w)
  41.     (XSizeHintsP hints))
  42.  
  43. (extern Status "XGetNormalHints"
  44.     (DisplayP dpy)
  45.     (Window w)
  46.     (out XSizeHints hints))
  47.  
  48. (extern void "XSetZoomHints"
  49.     (DisplayP dpy)
  50.     (Window w)
  51.     (XSizeHintsP zhints))
  52.  
  53. (extern Status "XGetZoomHints"
  54.     (DisplayP dpy)
  55.     (Window w)
  56.     (out XSizeHints zhints))
  57.  
  58. (extern void "XSetSizeHints"
  59.     (DisplayP dpy)
  60.     (Window w)
  61.     (XSizeHintsP hints)
  62.     (Atom property))
  63.  
  64. (extern Status "XGetSizeHints"
  65.     (DisplayP dpy)
  66.     (Window w)
  67.     (out XSizeHints hints)
  68.     (Atom property))
  69.  
  70. ;;; 9.1.7  Setting and Getting Icon Size Hints
  71.  
  72.     ;;; YSetIconSizes is in xwss.sc
  73.  
  74.     ;;; YGetIconSizes is in xwss.sc
  75.  
  76. ;;; 9.1.8  Setting and Getting the Class of a Window
  77.  
  78.     ;;; YSetClassHint is in xwss.sc
  79.  
  80.     ;;; YGetClassHint is in xwss.sc
  81.  
  82. ;;; 9.1.9  Setting and Getting the Transient Property
  83.  
  84. (extern void "XSetTransientForHint"
  85.     (DisplayP dpy)
  86.     (Window w)
  87.     (Window propWindow))
  88.  
  89. (extern Status "XGetTransientForHint"
  90.     (DisplayP dpy)
  91.     (Window w)
  92.     (out Window propWindow))
  93.  
  94. ;;; 9.2.3  Getting and Setting an XStandardColormap Structure
  95.  
  96. (extern Status "XGetStandardColormap"
  97.     (DisplayP dpy)
  98.     (Window w)
  99.     (out XStandardColormap cmap)
  100.     (Atom property))
  101.  
  102. (extern void "XSetStandardColormap"
  103.     (DisplayP dpy)
  104.     (Window w)
  105.     (XStandardColormapP cmap)
  106.     (Atom property))
  107.